@media (max-width: 768px) {

  .container_header_l1 {
    position: fixed;
    z-index: 1000;
    top: 0;
    height: 80px;
    background: white;
    border-bottom: 2px solid var(--color-primary);
    background-color: var(--color-secondary);
    padding-top: 0;
    padding-bottom: 5vh;

  }

  /*Section 1 */
  .container_section1_l1 {
    position: relative;
    z-index: 100;
    height: 100vh;
    padding: 4rem 2rem;
    padding-top: 10vh;
    box-sizing: border-box;
    border-bottom: 2px solid var(--color-primary);
    background-image: url("../img/1000007028.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: var(--font_bebas);
    overflow: hidden;
  }

  .social_items {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    align-items: left;
    justify-content: flex-start;
    margin-top: 2vw;
    margin-left: 2vw;
  }

  .container_header_l1 svg {
    position: relative;
    height: 1.5rem;
    width: 1.5rem;
  }

  .freelancermap {
    display: none;
  }

  .header_button {
    background-color: var(--color-secondary);
    /* black */
    color: var(--color-primary);
    /* green text */
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    /* center within flex container */
    text-transform: uppercase;
    text-decoration: none;
    /* removes underline */
    font-family: 'Inter', sans-serif;

  }

  .header_button:hover {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
  }

  .language_buttons {
    display: flex;
    background-color: var(--color-bg-dark);
    position: relative;
    width: 1rem;
    align-items: center;
  }

  .lang-btn {
    border: none;
    font-family: "Source Code Pro", monospace;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    cursor: pointer;
    font-size: 0.8rem;
  }

  .divider {
    color: var(--color-primary);
    font-size: 0.8rem;
    padding: 0.3rem;
  }

  .hero_button {
    background-color: var(--color-secondary);
    /* black */
    color: var(--color-primary);
    /* green text */
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--color-primary);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    /* center within flex container */
    text-transform: uppercase;
    text-decoration: none;
    /* removes underline */
    font-family: 'Inter', sans-serif;
  }

  .container_section2_l2 {
    position: relative;
    z-index: 210;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
    /*outline: 2px dashed red;*/
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

 .container_section2_l2_l,
  .container_section2_l2_r {
    flex: 1 1;
    width: 100%;
  }

.container_section2_l2_l {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.25rem; /* space between <p> elements */

}

.container_section2_l2_r {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  height: auto;
  width: 60%;
}

  .large {
    font-size: 1rem;
  }

  .last_123 {
    padding-top: 1.5rem;
  }

  .container_section2_l2 img {
    position: relative;
    top: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    height: auto;
    width: 80%;
    border-radius: 5px;
    display: block;
  }

  .container_section3_l2 {
    position: relative;
    z-index: 310;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 0.5rem;
    height: 105%;
    width: 100%;
    padding: 1rem 1rem;
    box-sizing: border-box;
    font-family: var(--font_bebas);
    font-size: 1rem;
    font-weight: bold;
    /*outline: 2px dashed red;*/
    overflow: hidden;
  }

  .container_footer_l2 {
    position: relative;
    z-index: 410;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    height: 98%;
    width: 100%;
    padding: 1rem 1rem;
    box-sizing: border-box;
    /*outline: 2px dashed red;*/
    font-family: var(--font_inter);
    font-size: 0.8rem;
  }

}